Skip to main content

dataArray

Type

property

Summary

Get or set the data array that the Table will display.

Syntax

get the dataArray of <widget>
set the dataArray of <widget> to <pDataArray>

Description

Use the dataArray property to get or set the array of data that the Table will display. The first dimension of the array uses numeric keys, and the value of each is an array in which each key corresponds to a column name. The value taken by the dataArray property is an ordered array.

put \"Hi\" into tArray[1][\"message\"]
put \"Bye\" into tArray[2][\"message\"]
set the dataArray of widget \"Table\" to tArray